home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Common / CBaseCOM.h < prev    next >
Text File  |  1997-01-03  |  599b  |  26 lines

  1. // =================================================================================
  2. //
  3. //    CBaseCOM.h                ©1996 Microsoft Corporation All rights reserved.
  4. //
  5. // =================================================================================
  6.  
  7. #ifndef _H_CBaseCOM
  8. #define _H_CBaseCOM
  9. #pragma once
  10.  
  11.  
  12. class CBaseCOM:
  13.     public virtual CRefCount,
  14.     public IUnknown
  15. {
  16. public:
  17.     CBaseCOM(void);
  18.     virtual ~CBaseCOM(void);
  19.     
  20.     //  *** IUnknown methods ***
  21.     STDMETHOD (QueryInterface)(REFIID inRefID, void** outObj);
  22.     STDMETHOD_ (Uint32, AddRef)(void);
  23.     STDMETHOD_ (Uint32, Release)(void);
  24. };
  25.  
  26. #endif